

5. Agora 3.0.156 Olympus:
	Joomla 1.5:
		
		Do not set a title to your SEO links!
		
		1. Open /components/com_agora/helpers/parser.php
		2. Find the parseMessage function (on line 165). Right after the opening curly bracket insert the following code:

			#SEOLinks BOM
			static $seoparams = NULL, $seorow = NULL;
			if (empty($seoparams)) {
				$seoparams = new JParameter('');
				$seorow = new StdClass();
				$seorow->id = 0;
			}
			if (JPluginHelper::importPlugin('content','seolinks',true)) {
				$seorow->text = $text;
				JDispatcher::getInstance()->trigger('onPrepareContent', array($seorow, $seoparams));
				$text = str_replace(array('<a', ' href="', '</a>', '" title="">', '[url ='), array('[url', '=', '[/url]', ']', '[url='), $seorow->text);
			}
			#SEOLinks EOM